testing.outputWriter.c (field)

16 uses

	testing (current package)
		testing.go#L1125: 	c.o = &outputWriter{c: c}
		testing.go#L1130: 	c       *common
		testing.go#L1139: 	if o == nil || o.c == nil {
		testing.go#L1142: 	if o.c.destination() == nil {
		testing.go#L1143: 		panic("Write called after " + o.c.name + " has completed")
		testing.go#L1146: 	o.c.mu.Lock()
		testing.go#L1147: 	defer o.c.mu.Unlock()
		testing.go#L1168: 	if !o.c.done && (o.c.chatty != nil) {
		testing.go#L1169: 		if o.c.bench {
		testing.go#L1174: 			o.c.chatty.Printf(o.c.name, "%s%s", indent, b)
		testing.go#L1178: 	o.c.output = append(o.c.output, indent...)
		testing.go#L1179: 	o.c.output = append(o.c.output, b...)